home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gcc / ixemlsrc.lha / ixemul / static / Makefile.in < prev    next >
Makefile  |  1996-03-13  |  1KB  |  58 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4.  
  5. ifeq ($(srcdir),.)
  6. srcdir = ../../..
  7. endif
  8.  
  9. VPATH :=    $(srcdir)
  10.  
  11. # Common prefix for machine-independent installed files.
  12. prefix =    @prefix@
  13.  
  14. # Common prefix for machine-dependent installed files.
  15. exec_prefix =    @exec_prefix@
  16.  
  17. bindir =    $(exec_prefix)/bin
  18. libdir =    $(exec_prefix)/Sys/libs
  19.  
  20. INSTALL =    @INSTALL@
  21. INSTALL_DATA =    @INSTALL_DATA@
  22.  
  23. CC =        @CC@
  24.  
  25. CFLAGS =    @CFLAGS@
  26. LDFLAGS =    @LDFLAGS@
  27.  
  28. RANLIB =    @RANLIB@
  29. AR =        ar
  30.  
  31. #### End system configuration section ####
  32.  
  33. FLAVOR_CFLAGS =    -m$(CPU) -m$(FPU) -f$(BASE)
  34. OTHER_CFLAGS =    -fomit-frame-pointer
  35. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
  36.  
  37. DEFS =        -DSTATIC_LIBRARY -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone
  38. INCS =        -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
  39.  
  40. .c.o:
  41.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  42.  
  43. SRC =        asctime.c localtime.c errlst.c siglist.c popen.c rand48.c \
  44.         fts.c regexp.c regerror.c regsub.c regex.c getopt.c
  45.  
  46. OBJ =        $(SRC:.c=.o)
  47.  
  48. libstatic.a:    $(OBJ)
  49.         rm -f $@
  50.         $(AR) rc $@ $(OBJ)
  51.         $(RANLIB) $@
  52.  
  53. clean:
  54.         rm -rf *baserel
  55.  
  56. clobber:    clean
  57.         rm -f Makefile
  58.